home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / rindex.c < prev    next >
C/C++ Source or Header  |  1989-03-22  |  1KB  |  57 lines

  1. /* 
  2.  * rindex.c --
  3.  *
  4.  *    Source code for the "rindex" library routine.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/rindex.c,v 1.2 89/03/22 16:06:28 rab Exp $ SPRITE (Berkeley)";
  18. #endif /* not lint */
  19.  
  20. #include <string.h>
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * rindex --
  26.  *
  27.  *    Locate the last appearance of a character in a string.
  28.  *
  29.  * Results:
  30.  *    The return value is the address of the last appearance
  31.  *    in string of c.  If c doesn't appear in string then 0
  32.  *    is returned.
  33.  *
  34.  * Side effects:
  35.  *    None.
  36.  *
  37.  *----------------------------------------------------------------------
  38.  */
  39.  
  40. char *
  41. rindex(string, c)
  42.     register char *string;        /* String to search. */
  43.     register char c;            /* Desired character. */
  44. {
  45.     register char *result = (char *) 0;
  46.  
  47.     while (1) {
  48.     if (*string == c) {
  49.         result = string;
  50.     }
  51.     if (*string++ == 0) {
  52.         break;
  53.     }
  54.     }
  55.     return result;
  56. }
  57.